projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ff6d92
)
composite.c (composition_update_it): Fix previous change.
author
Kenichi Handa
<handa@gnu.org>
Sun, 19 Jan 2014 13:26:21 +0000
(22:26 +0900)
committer
Kenichi Handa
<handa@gnu.org>
Sun, 19 Jan 2014 13:26:21 +0000
(22:26 +0900)
src/ChangeLog
patch
|
blob
|
history
src/composite.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 82a5d68b923482ceb1357d708921d59de975c58e..2ef0336388af7ae317d1ef541f5b2cd333e9b86d 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,7
@@
+2014-01-19 K. Handa <handa@gnu.org>
+
+ * composite.c (composition_update_it): Fix previous change.
+
2014-01-18 Eli Zaretskii <eliz@gnu.org>
Fix file name handling on MS-Windows 9X.
diff --git
a/src/composite.c
b/src/composite.c
index 40cef814c1da1b552838d66585dc19364d3cd855..04cfe5efee0504352c4c0c6459c2fb75bcd02463 100644
(file)
--- a/
src/composite.c
+++ b/
src/composite.c
@@
-1412,7
+1412,7
@@
composition_update_it (struct composition_it *cmp_it, ptrdiff_t charpos, ptrdiff
cmp_it->width = 0;
for (i = cmp_it->nchars - 1; i >= 0; i--)
{
- c = XINT (LGSTRING_CHAR (gstring,
cmp_it->
from + i));
+ c = XINT (LGSTRING_CHAR (gstring, from + i));
cmp_it->nbytes += CHAR_BYTES (c);
cmp_it->width += CHAR_WIDTH (c);
}